const go/token.FUNC

15 uses

	go/token (current package)
		token.go#L110: 	FUNC
		token.go#L216: 	FUNC:   "func",

	go/parser
		parser.go#L749: 		case token.IDENT, token.MUL, token.ARROW, token.FUNC, token.CHAN, token.MAP, token.STRUCT, token.INTERFACE, token.LPAREN:
		parser.go#L782: 	case token.MUL, token.ARROW, token.FUNC, token.LBRACK, token.CHAN, token.MAP, token.STRUCT, token.INTERFACE, token.LPAREN:
		parser.go#L993: 	pos := p.expect(token.FUNC)
		parser.go#L1269: 	case token.FUNC:
		parser.go#L1377: 	case token.FUNC:
		parser.go#L2438: 		token.IDENT, token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operands
		parser.go#L2762: 	pos := p.expect(token.FUNC)
		parser.go#L2825: 	case token.FUNC:

	go/printer
		nodes.go#L853: 		p.print(x.Type.Pos(), token.FUNC)
		nodes.go#L1008: 		p.print(token.FUNC)
		nodes.go#L1834: 	p.print(d.Pos(), token.FUNC, blank)
		nodes.go#L1870: 		tok = token.FUNC
		nodes.go#L1896: 			p.linebreak(p.lineFor(d.Pos()), min, ignore, tok == token.FUNC && p.numLines(d) > 1)